home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / account_demos.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  49 lines

  1. #
  2. # This script was written by Renaud Deraison
  3. #
  4. #
  5. # See the Nessus Scripts License for details
  6. #
  7.  
  8. account = "demos";
  9.  
  10. if(description)
  11. {
  12.  script_id(11242);
  13.  script_version ("$Revision: 1.4 $");
  14.  script_cve_id("CAN-1999-0502");
  15.  
  16.  script_name(english:string("Unpassworded ", account, " account"));
  17.          
  18.  
  19.  script_description(english:string("
  20. The account '", account, "' has no password set. 
  21. An attacker may use it to gain further privileges on this system
  22.  
  23. Risk factor : High
  24. Solution : Set a password for this account or disable it"));
  25.          
  26. script_summary(english:"Logs into the remote host",
  27.            francais:"Translate");
  28.  
  29.  script_category(ACT_GATHER_INFO);
  30.  
  31.  script_family(english:"Default Unix Accounts");
  32.  
  33.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison");
  34.  
  35.  
  36.  script_dependencie("find_service.nes");
  37.  script_require_ports("Services/telnet", 23, "Services/ssh", 22);
  38.  exit(0);
  39. }
  40.  
  41. #
  42. # The script code starts here : 
  43. #
  44. include("ssh_func.inc");
  45. include("default_account.inc");
  46.  
  47. port = check_account(login:account);
  48. if(port)security_hole(port);
  49.